home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 7: Sunsite / Linux Cubed Series 7 - Sunsite Vol 1.iso / system / linux-bo / comboot-.0 / comboot- / comboot-1.0 / Makefile < prev    next >
Encoding:
Makefile  |  1996-04-25  |  563 b   |  31 lines

  1. # This makefile requires GNU Make.
  2. AS86= as86
  3. LD86= ld86
  4.  
  5. TARGETS=    comboot
  6. prefix=    /usr
  7. LIBDIR= $(prefix)/lib
  8. MANDIR= $(prefix)/man
  9.  
  10. all: $(TARGETS)
  11.  
  12. clean:
  13.     -rm -f comboot.s *.o86 *.o86_linked makebootsect $(TARGETS) *~
  14.  
  15. install: all
  16.     mkdir -p $(LIBDIR)/bootsectors $(MANDIR)/man5
  17.     install comboot $(LIBDIR)/bootsectors
  18.     install comboot.5 $(MANDIR)/man5
  19.  
  20. %.s: %.S
  21.     $(CC) -traditional -E -o $@ $<
  22.  
  23. %.o86: %.s
  24.     as86 -0 -a -o $@ $<
  25.  
  26. %.o86_linked: %.o86
  27.     ld86 -0 -s -o $@ $<
  28.  
  29. comboot: comboot.o86_linked makebootsect
  30.     ./makebootsect ./comboot.o86_linked > ./comboot
  31.